home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / cool.lha / ice / cpp / Imakefile < prev    next >
Encoding:
Makefile  |  1991-09-04  |  1.4 KB  |  43 lines

  1. /*****************************************************************************
  2. //
  3. // Copyright (C) 1991 Texas Instruments Incorporated.
  4. //
  5. // Permission is granted to any individual or institution to use, copy, modify,
  6. // and distribute this software, provided that this complete copyright and
  7. // permission notice is maintained, intact, in all copies and supporting
  8. // documentation.
  9. //
  10. // Texas Instruments Incorporated provides this software "as is" without
  11. // express or implied warranty.
  12. //
  13.  *****************************************************************************
  14.  *
  15.  *    Filename: Imakefile
  16.  *    Module: ice/cpp
  17.  *    Purpose: Imakefile for ice/cpp module
  18.  *    Creation Date: 10/15/90
  19.  *
  20.  *****************************************************************************/
  21.  
  22. LOCAL_C_DEFS = $(DFLAG)COOL $(MISC_CFLAGS)
  23. ALLCPLUSDEFS = 
  24.  
  25. HDRS = cpp.h cppdef.h defmacio.h macro.h
  26.  
  27. SRCS = cpp1.$(C) cpp2.$(C) cpp3.$(C) cpp4.$(C) cpp5.$(C) \
  28.     cpp6.$(C) cpp7.$(C) \
  29.     class.$(C) compress.$(C) defmacio.$(C) defpackage.$(C) \
  30.     exception.$(C) generate.$(C) hash.$(C) macro.$(C) \
  31.     member.$(C) parmtype.$(C) template.$(C) typecase.$(C)
  32.  
  33. OBJS = cpp1.$(OBJ) cpp2.$(OBJ) cpp3.$(OBJ) cpp4.$(OBJ) cpp5.$(OBJ) \
  34.     cpp6.$(OBJ) cpp7.$(OBJ) \
  35.     class.$(OBJ) compress.$(OBJ) defmacio.$(OBJ) defpackage.$(OBJ) \
  36.     exception.$(OBJ) generate.$(OBJ) hash.$(OBJ) macro.$(OBJ) \
  37.     member.$(OBJ) parmtype.$(OBJ) template.$(OBJ) typecase.$(OBJ)
  38.  
  39. All(cpp)
  40. OptimizeCObject()
  41. CProgram(cpp)
  42. AllInstall()
  43.